home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1998 September / Macworld (1998-09).dmg / Shareware World / Info / For Developers / MacZoop 1.8.3 / Required Classes / Z Sources / ZStartUp.cpp < prev    next >
C/C++ Source or Header  |  1997-05-28  |  623b  |  41 lines

  1. /*************************************************************************************************
  2. *
  3. *
  4. *            ObjectMacZapp        -- a standard Mac OOP application template
  5. *
  6. *
  7. *
  8. *            ZStartUp.cpp            -- start-up code (main)
  9. *
  10. *
  11. *
  12. *
  13. *
  14. *            © 1996, Graham Cox
  15. *
  16. *
  17. *
  18. *
  19. *************************************************************************************************/
  20.  
  21. #include    "MacZoop.h"
  22.  
  23.  
  24. void    main();
  25.  
  26.  
  27. /* 
  28.  
  29.    The main routine for MacZoop simply creates the application object and tells it to run.
  30.    
  31. */ 
  32.  
  33.  
  34.  
  35.  
  36. void    main()
  37. {
  38.     gApplication = new ZApplication();            // make the application object
  39.     
  40.     RunApplication();                            // run it    
  41. }